home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / src / creat.c < prev    next >
C/C++ Source or Header  |  1996-01-04  |  181b  |  10 lines

  1. #include "amiga.h"
  2. #include "files.h"
  3. #include <fcntl.h>
  4.  
  5. int __creat(const char *file, int prot)
  6. {
  7.     __chkabort();
  8.     return __open(file, O_WRONLY | O_CREAT | O_TRUNC, prot);
  9. }
  10.